void setup() {
	Serial.begin(9600);
	randomSeed(analogRead(A0));  
}

void loop() {
	Serial.println(random(256));
	delay(500);
}